The series to update.
The X-value.
The new Y-value.
The new Z-value.
Update<TX,TY,TZ>(IXyzDataSeries<TX,TY,TZ>,TX,TY,TZ) Method
Updates (overwrites) the Y0, Y1 values at the specified X-value. Automatically triggers a redraw.
Syntax
[Extension()]
public static void Update<TX,TY,TZ>( 
   IXyzDataSeries<TX,TY,TZ> dataSeries,
   TX x,
   TY y,
   TZ z
)
where TX: IComparable
where TY: IComparable
where TZ: IComparable

Parameters

dataSeries
The series to update.
x
The X-value.
y
The new Y-value.
z
The new Z-value.

Type Parameters

TX
TY
TZ
Exceptions
ExceptionDescription
Thrown if the x value is not in the DataSeries.
Remarks
If the exact match of x is not found in the dataSeries, the update is ignored.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also